type flag.uintValue
8 uses
flag (current package)
flag.go#L198: type uintValue uint
flag.go#L200: func newUintValue(val uint, p *uint) *uintValue {
flag.go#L202: return (*uintValue)(p)
flag.go#L205: func (i *uintValue) Set(s string) error {
flag.go#L210: *i = uintValue(v)
flag.go#L214: func (i *uintValue) Get() any { return uint(*i) }
flag.go#L216: func (i *uintValue) String() string { return strconv.FormatUint(uint64(*i), 10) }
flag.go#L598: case *uintValue, *uint64Value:
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |